home *** CD-ROM | disk | FTP | other *** search
- if(isFirstPass)
- {
- bigClip._xscale = 25;
- bigClip._yscale = 25;
- thisObject.currentHeight = bigClip._height;
- thisObject.currentWidth = bigClip._width;
- _root.galleryWallAttached.setScale();
- isFirstPass = false;
- }
- var limits = bigClip.getBounds(this);
- titleBox._y = limits.yMax + 10;
- numVal.selectable = false;
- hitSpaceBig.onPress = function()
- {
- mousePress();
- };
- hitSpaceBig.onRelease = function()
- {
- hitSpaceBig._height = bigClip._height;
- hitSpaceBig._width = bigClip._width;
- hitSpaceBig._x = 300;
- hitSpaceBig._y = 300;
- mouseRelease();
- };
- titleBox.onPress = function()
- {
- _root.galleryWallAttached.selectCurrent(thisMovieClip);
- _root.descripBoxAttached._visible = true;
- _root.descripBoxAttached.descripTex = thisObject.description;
- _root.setCursor(-1);
- };
- titleBox.onRollOver = function()
- {
- _root.setCursor(304);
- };
- titleBox.onRollOut = function()
- {
- _root.setCursor(-1);
- };
-